home *** CD-ROM | disk | FTP | other *** search
/ Shareware Super Platinum 8 / Shareware Super Platinum 8.iso / mac / PROGTOOL / PASSDK30.ZIP;1 / DISK1.ZIP / PAS / SUBS / CDROM / TINY.BAT < prev   
Encoding:
DOS Batch File  |  1993-04-07  |  447 b   |  25 lines

  1.     @echo off
  2. rem
  3. rem TINY  model build
  4. rem
  5.     if not exist MAKEFILE goto errors
  6.  
  7.     if (%1)==(BCC) goto bcc
  8.     if (%1)==(bcc) goto bcc
  9.     nmake S=T M=0
  10.     if ERRORLEVEL,1 goto errors
  11.     goto end
  12.  
  13. :bcc
  14.     copy ..\..\..\inc\masm.inc
  15.     copy ..\..\..\inc\model.inc
  16.     make BCC=1 S=t M=0 CINC=%include%
  17.     if ERRORLEVEL,1 goto errors
  18.     goto end
  19.  
  20. :errors
  21.     echo There was an error in this build!
  22.     pause
  23.  
  24. :end
  25.